home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util1 / jukebx21.lha / JukeBox_2.1 / block.jb < prev    next >
Text File  |  1993-01-29  |  249b  |  12 lines

  1. /* block trace */
  2. /* (c) copyright 1992,93 by F.J. Reichert */
  3.  
  4. options results;
  5. say 'tracing block addresses, press [ESC] to end';
  6. do forever;
  7.     current block;
  8.     say 'current block address='||result;
  9.     current break;
  10.     if result ~= 0 then leave;
  11. end;
  12.